home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / flilib.zip / FLISRC.ZIP / COPYSCRE.C < prev    next >
C/C++ Source or Header  |  1989-11-16  |  239b  |  14 lines

  1.  
  2. #include "aascreen.h"
  3.  
  4. void aa_copy_screen(Vscreen *s, Vscreen *d)
  5. {
  6. i86_wcopy(s->p, d->p, d->psize>>1);
  7. i86_wcopy(s->cmap, d->cmap, (AA_COLORS*3)>>1);
  8. }
  9.  
  10. void aa_clear_screen(Vscreen *vs)
  11. {
  12. i86_wzero(vs->p, vs->psize>>1);
  13. }
  14.